home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / util1 / syslog.lha / SysLog_V1.00 / Developer / examples / Log / smakefile < prev   
Makefile  |  1995-11-13  |  273b  |  21 lines

  1. #
  2. # This file is public domain.
  3. #
  4. # $Id: smakefile 1.1 1995/10/30 19:33:00 petrin Exp petrin $
  5. #
  6.  
  7. #DEBUG     = DEBUG=FULLFLUSH
  8. DEBUG     =
  9.  
  10. CFLAGS    = $(DEBUG)
  11.  
  12.  
  13. Log: Log.o
  14.    sc link $(CFLAGS) Log.o
  15.  
  16. Log.o: Log.c
  17.    sc $(CFLAGS) Log.c
  18.  
  19. clean:
  20.    delete Log Log.lnk Log.o
  21.